home *** CD-ROM | disk | FTP | other *** search
/ HamCall (October 1991) / HamCall (Whitehall Publishing)(1991).bin / util / misc / 0del.txt < prev    next >
Text File  |  1989-08-13  |  3KB  |  81 lines

  1.     *****************************************************************
  2.     *   0DEL.EXE       by Peter M. Perchansky                       *
  3.     *                     412-1 Springside, Drive East              *
  4.     *                     Shillington, PA  19607                    *
  5.     *                     (No phone calls please)                   *
  6.     *                                                               *
  7.     *         Written in Microsoft Quick C Version 2.00 on 8-11-89  *
  8.     *         Copyright (c) Peter M. Perchansky 1989                *
  9.     ******************************************************************
  10.  
  11.  
  12.     0DEL.EXE allows you to delete zero byte files from your directories.
  13.  
  14.  
  15.     Usage for 0DEL.EXE:
  16.  
  17.       0DEL
  18.       0DEL /S
  19.       0DEL /A
  20.       0DEL <wildcard specs>
  21.       0DEL <wildcard specs> /S
  22.       0DEL <wildcard specs> /A
  23.  
  24.  
  25.     Examples of Usage:
  26.  
  27.       0DEL
  28.             Delete all zero-byte files in the current directory.
  29.  
  30.       0DEL /S
  31.             Deletes all zero-byte files in the current directory,
  32.             and in subdirectories.
  33.  
  34.       0DEL /A
  35.             Change to root directory, and delete all zero-byte files
  36.             in all directories.
  37.  
  38.       0DEL junk.*
  39.             Delete all zero-byte files named junk in the current
  40.             directory.
  41.  
  42.       0DEL junk.* /S
  43.             Deletes all zero-byte files named junk in the current
  44.             directory and subdirectories.
  45.  
  46.       0DEL junk.* /A
  47.             Change to the root directory, and delete all zero-byte files
  48.             named junk in all directories.
  49.  
  50.       0DEL *.tmp
  51.             Delete all zero-byte files with the extension .tmp in the
  52.             current directory.
  53.  
  54.       0DEL *.tmp /S
  55.             Deletes all zero-byte files with the extension .tmp in the
  56.             current directory and all subdirectories.
  57.  
  58.       0DEL *.tmp /A
  59.             Change to the root directory, and delete all zero-byte files
  60.             with the extension .tmp in all directories.
  61.  
  62.  
  63.       0DEL.EXE will not search directories or subdirectories that are
  64.       hidden.
  65.  
  66.       0DEL.EXE was tested successfully on a Mitsubishi 286 as well as
  67.       several XT and AT compatibles using DOS versions 3.30 thru 4.0.
  68.  
  69.       0DEL.EXE is FREE!  I offer no implicit or implied warranties.  I
  70.       debuged and tested 0DEL using the above mentioned computers and
  71.       operating systems.  0DEL worked.  I cannot promise 0DEL will
  72.       work on all makes and models of computers or operating systems.
  73.       It should, but I cannot promise it.
  74.  
  75.       Lastly.  I would appreciate any suggestions or comments on how to
  76.       improve 0DEL, or otherwise further my knowledge of the C
  77.       Language. I write and modify programs for a living; but, I'm new
  78.       to C --- so please send me your tips.  Please try to send your
  79.       communications through normal mailing services, INTERLINK, or
  80.       CompuServe 71301,344.
  81.